home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / PROGS / GLE / Makefile < prev    next >
Encoding:
Makefile  |  1998-08-12  |  1.1 KB  |  48 lines

  1. # Makefile for Win32
  2.  
  3. !include <win32.mak>
  4.  
  5. TOP  = ../..
  6. SRCS = beam.c candlestick.c cone.c cylinder.c helix.c helix2.c helix3.c helix4.c helixtex.c horn.c joincone.c joinoffset.c martini.c screw.c taper.c texas.c twoid.c twistoid.c
  7.  
  8. EXTRALIBS = $(GLE)
  9. DEPLIBS = $(GLE)
  10.  
  11. !include "$(TOP)/glutwin32.mak"
  12.  
  13. joincone.obj: cone.obj
  14.     @del joincone.obj
  15.     copy cone.obj joincone.obj
  16.  
  17. trackball.c:
  18.     @del trackball.c
  19.     copy ..\examples\trackball.c trackball.c
  20.  
  21. trackball.h:
  22.     @del trackball.h
  23.     copy ..\examples\trackball.h trackball.h
  24.  
  25. clobber::
  26.     @del trackball.c
  27.     @del trackball.h
  28.  
  29. # dependencies
  30. beam.exe    : mainsimple.obj
  31. cylinder.exe    : mainsimple.obj
  32. cone.exe    : mainsimple.obj
  33. helix.exe    : mainsimple.obj
  34. helix2.exe    : mainsimple.obj
  35. helix3.exe    : mainsimple.obj
  36. helix4.exe    : mainsimple.obj
  37. helixtex.exe    : texture.obj maintex.obj
  38. horn.exe    : mainsimple.obj
  39. joincone.exe    : mainjoin.obj
  40. joinoffset.exe    : mainjoin.obj
  41. martini.exe    : trackball.obj
  42. screw.exe    : texture.obj maintex.obj
  43. taper.exe    : mainsimple.obj
  44. texas.exe    : mainjoin.obj
  45. twistoid.exe    : texture.obj maintex.obj
  46. trackball.obj    : trackball.h
  47. martini.obj    : trackball.h
  48.